home *** CD-ROM | disk | FTP | other *** search
/ Linux Cubed Series 8: LINUX Games / Linux Cubed Series 8 - LINUX Games.iso / games / x11 / rpg / crossfir.92 / crossfir / crossfire-0.92.5 / crossedit / include / Ansi.h next >
C/C++ Source or Header  |  1996-07-24  |  506b  |  30 lines

  1. /*
  2.  * Ansi.h - include all ISO/IEC 9899:1990 (E) standard headers
  3.  * reference: ISO/IEC 9899:1990 (E)
  4.  */
  5.  
  6. #ifndef _Ansi_h
  7. #define _Ansi_h
  8.  
  9. #include <errno.h>
  10. #include <stddef.h>
  11. #include <assert.h>
  12. #include <ctype.h>
  13. #include <locale.h>
  14. #include <math.h>
  15. #include <setjmp.h>
  16. #include <signal.h>
  17. #include <stdarg.h>
  18. #include <stdio.h>
  19. #include <stdlib.h>
  20. #include <string.h>
  21. #include <time.h>
  22. #include <limits.h>
  23. #include <float.h>
  24.  
  25. #ifndef EXIT_FAILURE
  26. #define EXIT_FAILURE 1
  27. #endif
  28.  
  29. #endif /* _Ansi_h */
  30.